Returns number converted to text in Yen currency format. The optional "digits" arguments specifies the decimal precision.
DOLLAR(number,digits)
Returns number converted to text in Dollar currency format. The optional "digits" argument specifies the decimal precision.
VALUE(text)
Returns numeric value of text. Mariner automatically converts text to numbers, this function is provided for compatibility with other spreadsheet applications.
UPPER(text)
Returns text converted to uppercase letters.
T(value)
Returns text of value. If value is not text, T() returns ΓÇ£ ΓÇ¥ (empty). Mariner automatically converts text and numbers as needed, this function is provided for compatibility with other spreadsheet products.
RIGHTB(text,count)
Returns rightmost bytes of a text string. count is the number of bytes RIGHTB should return.
RIGHT(text,count)
Returns rightmost characters of a text string (including spaces). count is the number of characters RIGHT should return.
REPT(text,count)
Duplicates text the number of times specified in count.
MIDB(text,index,count)
Returns a substring of text. Beginning with the byte specified in index, MIDB returns the number of bytes in count.
MID(text,index,count)
Returns a substring of text. Beginning with the character specified in index, MID returns the number of characters in count.
LOWER(text)
Returns text converted to lowercase letters.
LENB(text)
Returns the number of bytes in text.
LEN(text)
Returns the number of characters in text.
LEFTB(text,count)
Returns leftmost bytes of a text string. count is the number of bytes LEFTB should return.
LEFT(text,count)
Returns leftmost characters of a text string (including spaces). count is the number of characters LEFT should return.
FIND(Find_Str,String,startposition)
Returns the position in String of the first occurrence Find_Str. FIND begins searching at the position specified by startposition, startposition is optional and is assumed to be 1 if omitted.
EXACT(text,text)
Returns TRUE (value 1) if the 2 text strings match, or FALSE (value 0) if they do not.
CODE(text)
Returns the ascii code of the first character in text.